home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_100
/
163_01
/
isspace.c
< prev
next >
Wrap
Text File
|
1988-01-30
|
512b
|
9 lines
/*
** isspace -- true if argument is ASCII space, tab, carriage return,
** newline (line feed), or form feed (ie, "white space")
*/
isspace(c) char c; {
if(c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\f') return 1;
else return 0;
}